3 Author: Andrés Mejía-Posada
4 (http://blogaritmo.factorcomun.org)
28 #define D(x) cout << #x " is " << x << endl
30 void randomCase(int max
){
33 for (int i
=0; i
<n
; ++i
){
35 x
= random()%(max
+1) * (random()%2?-1:1);
36 y
= random()%(max
+1) * (random()%2?-1:1);
37 cout
<< x
<< " " << y
<< endl
;